home *** CD-ROM | disk | FTP | other *** search
/ Learn Microsoft Visual Basic 6.0 Now / Learn Microsoft Visual Basic 6.0 Now (Microsoft Press)(X03-58607)(1998).ISO / media / chap10 / b10d015.cc2 < prev    next >
Text File  |  1998-06-07  |  3KB  |  58 lines

  1. 0, In this demonstration I'll show you how 
  2. 3, you can create a database front end with 
  3. 5, the data control and several bound 
  4. 8, textbox controls. The database I'll connect 
  5. 11, to is biblio.mdb, a Microsoft Access 
  6. 14, database that is supplied with Visual 
  7. 17, Basic. Biblio includes a database 
  8. 21, bibliography, including books about database 
  9. 23, programming. So here the program is in the 
  10. 27, Visual Basic development environment. And 
  11. 29, as you can see, I'm using a data object 
  12. 32, and four textbox objects. There are also 
  13. 36, labels that describe what the textbox 
  14. 38, objects do. The important settings for the 
  15. 41, data object are name, which specifies 
  16. 45, the name of the object that'll be used 
  17. 48, when I create my bound textbox controls. 
  18. 52, Another important property is caption, 
  19. 54, which displays the name inside the data 
  20. 56, control, and connect, which specifies the 
  21. 60, type of database. In this case, it's 
  22. 62, Access. Also the database name property is 
  23. 65, important. This will bring up a listbox 
  24. 68, that allows me to scroll to find my 
  25. 70, database. And in this case I have selected 
  26. 72, the biblio.mdb in the LVB Chapter 10 
  27. 76, folder. Also, I've set the read-only 
  28. 80, property to true. That means that no one can 
  29. 85, modify the records in my database. And 
  30. 88, I've set the record set type property to 
  31. 91, table. Now record set specifies a type of 
  32. 94, record set object that I want to create. 
  33. 98, I've also set the record source 
  34. 100, property to titles. And that specifies the 
  35. 103, underlying table in the database. Okay, if 
  36. 107, we look at one of our bound textbox 
  37. 110, objects we can see two important properties. 
  38. 114, First, the data field property specifies 
  39. 117, title, which is the name of our table in 
  40. 119, the database. And the data source property 
  41. 123, specifies dat.biblio as our source. And 
  42. 126, that's the name of the data object we 
  43. 128, used above. Okay, now when I run the 
  44. 130, program I can use the buttons on the data 
  45. 132, object to explore the database. I can go 
  46. 135, to the next record by clicking the small 
  47. 138, button on the right side, and I can go to 
  48. 144, the previous record by clicking the 
  49. 146, small button on the left side. If I want to 
  50. 150, go to the last record in the database I 
  51. 152, can click the outer right button. And 
  52. 156, if I want to go to the first record in 
  53. 157, the database I can click the outer left 
  54. 160, button. Best of all, this entire program 
  55. 165, has only one line of program code. That's 
  56. 168, the end statement that closes the 
  57. 170, program when I click the quit button.
  58. 174, END